22
Is it possible to let user choose the inserting mode, when he presses Insert key ( method 1 )
with MaskEdit1 do
begin
	Mask := '00:00';
	Text := '12:3';
	AllowToggleInsertMode := True;
	InsertMode := EXMASKEDITLib_TLB.exEditOvertypeMode;
end
21
Does your control support overtype mode ( method 2 )

with MaskEdit1 do
begin
	Mask := '00:00;;;overtype';
	Text := '12:3';
end
20
Does your control support overtype mode ( method 1 )

with MaskEdit1 do
begin
	InsertMode := EXMASKEDITLib_TLB.exEditOvertypeMode;
	Mask := '00:00';
	Text := '12:3';
end
19
How can I change the colors to show a read only field

with MaskEdit1 do
begin
	ForeColorReadOnly := RGB(255,255,255);
	BackColorReadOnly := RGB(0,0,0);
	ReadOnly := True;
	Text := 'text';
end
18
How can I lock or make read only the field (method 2)

with MaskEdit1 do
begin
	ReadOnly := True;
	Text := 'text';
end
17
How can I lock or make read only the field (method 1)

with MaskEdit1 do
begin
	Mask := '*;;;readonly';
	Text := 'text';
end
16
Is it possible to mask a password field (method 2)
with MaskEdit1 do
begin
	Right := True;
	Text := 'text';
end
15
Is it possible to right align field (method 1)
with MaskEdit1 do
begin
	Mask := '*;;;right';
	Text := 'text';
end
14
Is it possible to mask a password field (method 2)

with MaskEdit1 do
begin
	Password := True;
	Text := 'password';
end
13
Is it possible to mask a password field (method 1)

with MaskEdit1 do
begin
	Mask := '*;;;password';
	Text := 'password';
end
12
How can I mask an integer within a range

with MaskEdit1 do
begin
	Mask := '{1950,2050}';
	Text := 1979;
end
11
How can I mask an integer value with no grouping support

with MaskEdit1 do
begin
	Mask := ';;;float,grouping=,decimal=,digits=0,select=1';
	Text := 12345.67;
end
10
How can I mask an integer value (method 2)

with MaskEdit1 do
begin
	Mask := '-#####;;;float,select=1';
	Text := -12345.67;
end
9
How can I mask an integer value (method 1)

with MaskEdit1 do
begin
	Mask := ';;;float,decimal=,digits=0,select=1';
	Text := 12345.67;
end
8
How can I specify the number of digits when masking a float (method 2)

with MaskEdit1 do
begin
	Mask := '###.#;;;float,select=1';
	Text := 12345.67;
end
7
How can I specify the number of digits when masking a float (method 1)

with MaskEdit1 do
begin
	Mask := ';;;float,select=1,digits=1';
	Text := 12345.67;
end
6
How do I mask a positive, floating point numbers support, including grouping of digits

with MaskEdit1 do
begin
	Mask := ';;;float,select=1,negative=0';
	Text := -12345.67;
end
5
How do I mask a floating point numbers support, with a different decimal character

with MaskEdit1 do
begin
	Mask := ';;;float,grouping= ,decimal=\,,select=1';
	Text := '12345,67';
end
4
How do I mask a floating point numbers support, excluding grouping of digits

with MaskEdit1 do
begin
	Mask := ';;;float,grouping=,select=1';
	Text := 12345.67;
end
3
How do I mask a floating point numbers support, including grouping of digits

with MaskEdit1 do
begin
	Mask := ';;;float,select=1';
	Text := 12345.67;
end
2
How can I change the control's foreground color

with MaskEdit1 do
begin
	ForeColor := RGB(255,0,0);
	Text := 'aka';
end
1
How can I change the control's background color

with MaskEdit1 do
begin
	BackColor := RGB(255,0,0);
end